home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 001 / qscripts.arc / FIDO-NET.SCR < prev    next >
Text File  |  1986-03-02  |  1KB  |  58 lines

  1. . Try this script on SIMPLE SIMON'S at (612)445-1646
  2. .
  3. .THIS IS A LINKED SCRIPT FOR FIDO-NET SYSTEMS.
  4. .THE PROMPTS YOU GET FROM FIDO MAY BE DIFFERENT FROM THESE,
  5. .SO PREPARE TO EDIT!!
  6.  
  7. .ALSO FIDO IS VERY TOUCHY ABOUT PAUSES AND STRAY CHARACTERS!!
  8.  
  9. .USE YOUR WORD PROCESSOR TO EDIT THIS FILE TO INCLUDE
  10. .  [1] Your First Name
  11. .  [2] Your Last Name
  12. .  [3] Your Password
  13.  
  14. .COMMENTS ARE PREDEDED BY A PERIOD & REFER TO THE NEXT COMMAND LINE
  15.  
  16. .The next line says to WAITFOR 60 seconds before halting script
  17. TIMEOUT 60
  18.  
  19. .BEEP.SCR must be in your script directory!
  20. $1      $2
  21. SCRIPT  BEEP.SCR        'FIDO-NET.SCR'
  22. BEEPRET:
  23.  
  24. .Display message on-screen only
  25. NOTE ** LOGON TO FIDO-NET **
  26.  
  27. .The next line says to WAITFOR 60 seconds before halting script
  28. TIMEOUT 60
  29.  
  30. .FIDO-NET 'logon' is two spaces, separated by pauses
  31. SEND "~ ~ ~"
  32.  
  33. .Wait for FIDO-NET to request your first name
  34. WAITFOR "FIRST"
  35.  
  36. .[1] Reply with your first name, PAUSE first
  37. SEND "~~FIRSTNAME{"
  38.  
  39. .Wait for FIDO-NET to request your last name
  40. WAITFOR "LAST"
  41.  
  42. .[2] Send your last name, PAUSE first
  43. SEND "~~LASTNAME{"
  44.  
  45. .Wait for FIDO-NET to request confirmation of your name
  46. WAITFOR "y,n"
  47.  
  48. .Confirm it, PAUSE first
  49. SEND "~~y{"
  50.  
  51. .Wait for FIDO-NET to request your password
  52. WAITFOR "Password: "
  53.  
  54. .[3] Send pause, your password; include control characters if required
  55. SEND "~~PASSWORD{"
  56.  
  57. SCRIPT    END.SCT 
  58.